home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_2 / zzap65a.zip / ZZAP.CFG < prev    next >
Text File  |  1992-02-27  |  4KB  |  113 lines

  1. ;----------------------------------------------------------------------------
  2. ;                      ZZAP configuration file
  3. ;----------------------------------------------------------------------------
  4.  
  5. ; Declare your default command line switches.  These are set to the
  6. ; normal default that ZZAP uses.
  7.  
  8. SWITCH=a+/b-/c-f-/i-/k-/m+/n+/p-/r-/s-/t-/v-/x-
  9.  
  10. ; Declare the subdirectory to place corrupted/virused archives in.
  11.  
  12. BADDIR=C:\BAD.DIR
  13.  
  14. ; BBS file fixer program name and command line options
  15.  
  16. FIXER=QFIX.EXE descript.ion
  17.  
  18. ; Command line options for SCAN.EXE
  19.  
  20. SCANOPT=/A /NOMEM
  21.  
  22. ; Set the maximum number of days old a file can be to allow processing.
  23. ; Setting this value to zero will cause the age of a file to be ignored.
  24. ; AGE=1 indicates files with today's date ONLY, AGE=2 is for files stamped
  25. ; with today's or yesterday's date.
  26.  
  27. AGE=0
  28.  
  29. ; One use for the MID= command is to declare Norton's DIRSORT program
  30. ; so that all files are sorted before being placed in the new archive.
  31. ; Programs such as PKZIP do not sort the files when placing them in
  32. ; the archive.  This example is commented out.
  33.  
  34. ; MID=D:\NORTON\DS.EXE NE
  35.  
  36. mid=%comspec%
  37.  
  38. ; Define each of the extracting programs.  Each definition must
  39. ; begin with the extension associated with that archive type,
  40. ; followed by the command to extract all files.  The %1 is
  41. ; replaced by the path and filename of the archive.
  42.  
  43. UNARC=arc pkunpak.exe %1 >nul
  44. UNARC=arj arj.exe e -a -y %1 >nul
  45. UNARC=dwc dwc.exe ew %1 >nul
  46. UNARC=ice ice.exe e -n %1 >nul
  47. UNARC=lbr lue220.com %1 >nul
  48. UNARC=lzh lha.exe e /xm -n %1 >nul
  49. UNARC=pak pak.exe e %1 >nul
  50. UNARC=sdn pak.exe e %1 >nul
  51. UNARC=zip pkunzip.exe -d -jhsr %1 >nul
  52. UNARC=zoo zoo.exe e// %1 >nul
  53.  
  54. ; The next command defines the default archive to convert to. You
  55. ; can override this command with the /E or /O switch.
  56.  
  57. DEFAULT=zip
  58.  
  59. ; Define the archiving programs.  This command is almost
  60. ; identical to the UNARC command except you must follow the
  61. ; extension with the command to add all files in the current
  62. ; subdirectory to the archive.
  63.  
  64. ARC=arc pkpak.exe -a %1 *.* >nul
  65. ARC=arj arj.exe a -a -jt -y %1 *.* > nul
  66. ARC=dwc dwc.exe arw %1 *.*/s
  67. ARC=ice ice.exe a -anm %1 *.* >nul
  68. ARC=lzh lha.exe a -amnpr %1 *.* >nul
  69. ARC=pak pak.exe a /I %1 *.* >nul
  70. ARC=sdn pak.exe ai %1 *.* >nul
  71. ARC=zoo zoo.exe a: %1 * >nul
  72. ARC=zip pkzip.exe -a -ex -jhsr -whsr -p -r %1 *.* >nul
  73.  
  74. ; Define self-extracting archive signatures. The first parameter
  75. ; is the archive type, the second parameter is offset into the
  76. ; file (decimal), the rest is the signature.  See the manual for
  77. ; additional information.
  78.  
  79. ; ARJ 2.30 jr
  80. SFX=ARJ 561 aRJsfX
  81.  
  82. ; ARJ 2.30
  83. SFX=ARJ 562 aRJsfX
  84.  
  85. ; LHA 2.05E
  86. SFX=LZH 36 LH's SFX
  87.  
  88. ; ZIP 1.10
  89. SFX=ZIP 50 PKWARE
  90.  
  91. ; The following command determines how executable programs (EXE
  92. ; and COM files) that are not self-extracting archives (SFX)
  93. ; should be treated.  The default is to flag the file as "BAD".
  94. ; The following command causes the file to simply be ignored
  95. ; instead.
  96.  
  97. NONSFX=IGNORE
  98.  
  99. ; The next command determines if executables contained inside an
  100. ; archive should be checked for the SFX signature.  This command
  101. ; accepts one of three parameters:  YES, NO, and BAD (see manual
  102. ; for further details).  Here we are saying to not check for
  103. ; nested SFX files, which is the default if the command was left
  104. ; out entirely.
  105.  
  106. NESTEDSFX=NO
  107.  
  108.  
  109. ; Here's an example of automatically adding an archive comment by using the
  110. ; -z option of PKZIP and redirecting the standard input from a file:
  111.  
  112. ; ARC=zip pkzip.exe -a -ex -jhsr -whsr -z %1 *.* >NUL <c:\archives\header.txt
  113.